home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 28 / 028.d81 / t.q&a part 3 < prev    next >
Text File  |  2022-08-26  |  4KB  |  218 lines

  1.  
  2.  
  3. Questions & Answers Part 3
  4. --------------------------
  5.  
  6. From: A. Sessanna
  7.  
  8. > Oh don't you cry for me... <
  9.  
  10.   When somebody sends in some
  11.  
  12. questions how many issues pass before
  13.  
  14. they are answered?
  15.  
  16. > We attempt to operate on a schedule
  17. > two months ahead of our publication
  18. > date.  This helps insure that an
  19. > issue is thoroughly tested, but also
  20. > delays user responses.
  21.  
  22.  
  23.  Is cleaning the disk drive rough on
  24.  
  25. it like formatting is?
  26.  
  27. > According to our sources, neither
  28. > formatting or cleaning is bad on the
  29. > drive.  The general rule of thumb is
  30. > to clean your drive head about every
  31. > 25 hours of use.
  32.  
  33.  Is there any way to change the name
  34.  
  35. of a SEQ file?
  36.  
  37. > The normal rename command will work
  38. > for SEQ files.  To use it, type in
  39. > the following:
  40. >
  41. >  OPEN15,8,15,"R0:NEWNAME=OLDNAME"
  42. >  CLOSE15
  43.  
  44.  
  45.   When I turn on my disk drive the
  46.  
  47. light doesn't go out for about 1
  48.  
  49. minute.  Is there a way that this can
  50.  
  51. be stopped?
  52.  
  53. > That is a problem we have never
  54. > heard of.  There is undoubtedly
  55. > something wrong with your drive.
  56. > Try typing this after you turn on
  57. > your machine and insert a formatted
  58. > disk:
  59. >
  60. >  OPEN15,8,15,"I0:":CLOSE15
  61. >
  62. > This is the command to initialize
  63. > the disk drive.  If there are no
  64. > other problems with your drive,
  65. > then just ignore the light.
  66.  
  67.  
  68.   Is it illegal to use part of someone
  69.  
  70. else's program in one of your
  71.  
  72. programs and send it in to LOADSTAR?
  73.  
  74. > Yes, IF it is copyrighted.
  75.  
  76.  
  77. --------------------------------------
  78.  
  79. From: Jim White
  80.  
  81.   I would like to thank all concerned
  82.  
  83. for some fine software. The PGM
  84.  
  85. program (Loadstar #21) has given me a
  86.  
  87. lot more power on my 64.
  88.  
  89.   One thing I would like to do is
  90.  
  91. print the hires screens from your
  92.  
  93. disks.  Can you help me?
  94.  
  95. > Because our pictures can be in
  96. > several different formats, and there
  97. > are so many different printers out
  98. > there, not to mention so many
  99. > different interfaces, there would
  100. > have to be dozens of specific
  101. > programs to do the job.  We don't
  102. > anticipate tackling it, but will
  103. > gladly accept program submissions
  104. > that do it.
  105.  
  106.  
  107. I would like to see an alarm clock
  108.  
  109. program. 
  110.  
  111. > We published an alarm clock program
  112. > in Loadstar #9.  Why not order it
  113. > and check it out?
  114.  
  115. --------------------------------------
  116.  
  117. From: Brown
  118.  
  119.   I am having problems with a
  120.  
  121. program from disk #23, the program is
  122.  
  123. "123 DIRECTORY".  Sometimes it works
  124.  
  125. but most of the time it doesn't.
  126.  
  127.   When I load and then run the program
  128.  
  129. I will get: Bad Subscript Error in
  130.  
  131. 100.
  132.  
  133.   Line 100 reads as follows:
  134.  
  135. GET#1,A$,B$:X=ASC(A$+N$)+ASC(B$+N$)*
  136. 256:C$(I,L)=STR$(X)
  137.  
  138. > We have found that "123 Directory"
  139. > is very sensitive to control
  140. > characters in filenames.  Try to
  141. > make sure that you don't run it on
  142. > any directory with such characters
  143. > embedded.
  144.  
  145. --------------------------------------
  146.  
  147. From: Chris DeYoung
  148.  
  149.   I'm ten years old.  I made a program
  150.  
  151. that lists all the houses I deliver
  152.  
  153. to on my paper route.  Whenever
  154.  
  155. somebody stops or starts receiving
  156.  
  157. the newspaper I deliver, I have to
  158.  
  159. change about ten lines in the
  160.  
  161. program then save the program
  162.  
  163. again.  I want to be able to save the
  164.  
  165. numbers in a sequential file so that
  166.  
  167. I can alter the data without changing
  168.  
  169. program lines.  I want to learn how
  170.  
  171. to create and access the file; could
  172.  
  173. you give me some information?
  174.  
  175.  
  176.             Thank you.
  177.  
  178.  
  179. > To create a NEW SEQ data file
  180. > and write information to it:
  181. >
  182. > 100 REM OPEN THE DATA FILE
  183. > 110 :
  184. > 120 OPEN5,8,5,"FILENAME,S,W"
  185. > 130 :
  186. > 140 REM PUT DATA INTO AN ARRAY
  187. > 145 REM WITH NO COMMAS IN DATA!
  188. > 150 :
  189. > 160 A$(1)="JOHN DOE"
  190. > 170 A$(2)="1315 STRAIGHT ST."
  191. > 180 A$(3)="SHREVEPORT LA. 71104"
  192. > 190 :
  193. > 200 REM WRITE DATA TO SEQ FILE
  194. > 210 :
  195. > 220 FOR T=1 TO 3
  196. > 230 PRINT#5,A$(T)
  197. > 240 NEXT : CLOSE5
  198. >
  199. > To read data from the file do this:
  200. >
  201. > 200 OPEN5,8,5,"FILENAME,S,R"
  202. > 210 FOR T=1 TO 3
  203. > 220 INPUT#5,A$(T) : PRINT A$(T)
  204. > 230 NEXT : CLOSE5
  205. >
  206. >   Good luck with your newspaper
  207. > route as well as your program
  208. > to organize it!  I hope this is
  209. > enough information to get you
  210. > started on putting your data into
  211. > SEQ files.
  212. >   For full information on disk use,
  213. > order our disk, "DOS and DON'TS".
  214. > See the "About our Products" file on
  215. > Side Two.
  216.  
  217. -----------< end of text >------------
  218.